home *** CD-ROM | disk | FTP | other *** search
/ PC World Interactive 7 / PC World Interactive 7.iso / program / cprog.EXE / CC_1.ZIP / FPUTS.C < prev    next >
Text File  |  1988-02-01  |  384b  |  14 lines

  1. /*
  2. ** put a string to a stream file
  3. */
  4. extern int fputc();
  5.  
  6. fputs(s, stream) char *s; int *stream; {
  7.   char ch, *str;
  8.   str=s;
  9.   while(ch=*s++) {
  10.     if(fputc(ch, stream) == -1) return -1;
  11.     }
  12.   return str;
  13.   }
  14.